home *** CD-ROM | disk | FTP | other *** search
/ 600 Games / 600games.iso / Nave / Monkey Lander.swf / scripts / frame_132 / DoAction.as
Encoding:
Text File  |  2006-06-13  |  347 b   |  15 lines

  1. if(cocoFuel._currentframe < cocoFuel._totalframes - 10)
  2. {
  3.    _root.score += 5;
  4.    _root.txtScore = _root.score;
  5.    gotoAndPlay(_currentframe - 1);
  6.    if(_root.volumeOff == false)
  7.    {
  8.       if(sndBonus.duration - 150 < sndBonus.position)
  9.       {
  10.          sndBonus.setVolume(random(50) + 5);
  11.          sndBonus.start();
  12.       }
  13.    }
  14. }
  15.